Skip to content

Instantly share code, notes, and snippets.

@Edu4rdSHL
Edu4rdSHL / setup-geforcenow-linux.md
Last active July 13, 2026 22:37
How to setup official GeforceNow app on Linux

If you want to setup the official GeforceNow app on Linux for gaming, use:

  • flatpak install -y --user flathub org.freedesktop.Sdk//24.08 org.freedesktop.Platform//24.08
  • flatpak remote-add --user --if-not-exists GeForceNOW https://international.download.nvidia.com/GFNLinux/flatpak/geforcenow.flatpakrepo
  • flatpak install -y --user GeForceNOW com.nvidia.geforcenow
  • flatpak run com.nvidia.geforcenow
  • If you are on Wayland and the Window doesn't open: flatpak override --user --nosocket=wayland com.nvidia.geforcenow, then launch again.

Alternatively:

@sakitume
sakitume / Klipper-RP2040.md
Last active July 13, 2026 22:36
RP2040 Secondary MCU for Klipper

I'm using a small "Pico" or "Zero" dev board purchased from Amazon. It has a USB-C connector and numerous GPI pins broken out (0-15, 26-29).

Plug this board to the klipper host computer and use lsusb and you'll find this entry:

Bus 001 Device 005: ID 2e8a:0003 Raspberry Pi RP2 Boot

Seeing this will tell you that your computer is able to establish a usb connection to the dev board and you can now proceed with building and flashing Klipper.

@naim149
naim149 / GH-600-public-study-guide.md
Created May 24, 2026 15:08
GH-600 Public Study Guide

GH-600 Public Study Guide

Markdown-only workbook for Exam GH-600: Developing in Agentic AI Systems.

Last updated: May 24, 2026.

This version is organized around the official GH-600 domains. Each domain explains the concepts, shows the GitHub implementation artifacts, and includes examples you should be able to read in YAML, Markdown, CLI output, PR timelines, and audit logs.

Public sharing note: this guide is not an exam dump and does not contain real exam questions or answer choices. It is a structured study workbook built from official Microsoft and GitHub documentation, with practical examples written for learning and review.

#!/usr/bin/env zsh
# Multi-project worktree manager with Claude support
#
# ASSUMPTIONS & SETUP:
# - Your git projects live in: ~/projects/
# - Worktrees will be created in: ~/projects/worktrees/<project>/<branch>
# - New branches will be named: <your-username>/<feature-name>
#
# DIRECTORY STRUCTURE EXAMPLE:
# ~/projects/

Docker Compose File

This will install node js and allow you to use claude code in a docker container on unraid use the compose manager plugin.

Use at your own risk This will give AI access to whatever files you pass to the container (if using filesystem mcp).

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@fabiolimace
fabiolimace / ksuid.sql
Last active July 13, 2026 22:24
Functions for generating Segment's KSUIDs on PostgreSQL
/*
* MIT License
*
* Copyright (c) 2023 Fabio Lima
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
@itsanov
itsanov / fix_sketchup_wine.rb
Last active July 13, 2026 22:20 — forked from DSDev-NickHogle/fix_sketchup_wine.rb
Helps fix the one-frame delay problem when running Google Sketchup in Wine
# Fixes the view each time the view changes
require 'sketchup'
def refresh
UI.start_timer(0, false) {
Sketchup.active_model.active_view.invalidate.refresh
}
end
@cereblab
cereblab / grok-build-cli-wire-analysis.md
Last active July 13, 2026 22:15
What xAI Grok Build CLI actually sends to xAI - a wire-level analysis (grok 0.2.93)

What xAI's Grok Build CLI Actually Sends to xAI: A Wire-Level Analysis

By @cereblab — Independent AI Safety Checker. Reproduce it yourself: github.com/cereblab/grok-build-exfil-repro

A measured, reproducible teardown. Findings are backed by captured artifacts (endpoint, HTTP method, status code, byte size, host) and repro commands; where an observation was seen live but not retained as a file, §7 says so explicitly. Section 8 is an evidence appendix with SHA-256s and a "what we did not prove" list. All captures are of my own traffic on my own machine, using a throwaway repository containing fake "canary" secrets — no real credentials were exposed.


0. Summary